Method: Symbol#<=>

Defined in:
lib/glyph/system_extensions.rb

#<=>(b) ⇒ Object

Comparison operator based on the one in the String class.



4
5
6
# File 'lib/glyph/system_extensions.rb', line 4

def <=>(b)
	self.to_s <=> b.to_s
end